1 package jrre.instructionset.objects;
2
3 import jrre.*;
4 import jrre.types.*;
5
6 public class MonitorExit extends jrre.instructionset.Instruction {
7
8 public MonitorExit(){
9
10 name = "monitorexit ";
11 description = "ends monitoring an object.";
12 length = 0;
13 }
14
15 /***
16 * Executes the <strong><code>monitorexit</code></strong> instruction.
17 *
18 */
19 public void execute(){
20
21 Type toStopMonitoring = Stack.popOperand();
22 }
23
24 public String toString(){
25 StringBuffer toReturn = new StringBuffer();
26 toReturn.append("monitorexit ");
27 return toReturn.toString();
28 }
29 }
This page was automatically generated by Maven